home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-597.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  110 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(15536);
  11.  script_version ("$Revision: 1.2 $");
  12.  script_cve_id("CAN-2004-0381", "CAN-2004-0388", "CAN-2004-0457", "CAN-2004-0835", "CAN-2004-0836", "CAN-2004-0837", "CAN-2004-0957");
  13.  
  14.  name["english"] = "RHSA-2004-597: mysql";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated mysql packages that fix various security issues, as well as a
  21.   number of bugs, are now available for Red Hat Enterprise Linux 2.1.
  22.  
  23.   MySQL is a multi-user, multi-threaded SQL database server.
  24.  
  25.   A number security issues that affect the mysql server have been reported:
  26.  
  27.   Oleksandr Byelkin discovered that "ALTER TABLE ... RENAME" checked
  28.   the CREATE/INSERT rights of the old table instead of the new one. The
  29.   Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned
  30.   the name CAN-2004-0835 to this issue.
  31.  
  32.   Lukasz Wojtow discovered a buffer overrun in the mysql_real_connect
  33.   function. In order to exploit this issue an attacker would need to force
  34.   the use of a malicious DNS server (CAN-2004-0836).
  35.  
  36.   Dean Ellis discovered that multiple threads ALTERing the same (or
  37.   different) MERGE tables to change the UNION could cause the server to crash
  38.   or stall (CAN-2004-0837).
  39.  
  40.   Sergei Golubchik discovered that if a user is granted privileges to a
  41.   database with a name containing an underscore ("_"), the user also gains
  42.   the ability to grant privileges to other databases with similar names
  43.   (CAN-2004-0957).
  44.  
  45.   Additionally, the following minor temporary file vulnerabilities were
  46.   discovered:
  47.  
  48.   - Stan Bubroski and Shaun Colley found a temporary file vulnerability in
  49.   the mysqlbug script (CAN-2004-0381).
  50.   - A temporary file vulnerability was discovered in mysqld_multi
  51.   (CAN-2004-0388).
  52.   - Jeroen van Wolffelaar discovered an temporary file vulnerability in the
  53.   mysqlhotcopy script when using the scp method (CAN-2004-0457).
  54.  
  55.   All users of mysql should upgrade to these updated packages, which resolve
  56.   these issues and also include fixes for a number of small bugs.
  57.  
  58.  
  59.  
  60.  
  61. Solution : http://rhn.redhat.com/errata/RHSA-2004-597.html
  62. Risk factor : High';
  63.  
  64.  script_description(english:desc["english"]);
  65.  
  66.  summary["english"] = "Check for the version of the mysql packages";
  67.  script_summary(english:summary["english"]);
  68.  
  69.  script_category(ACT_GATHER_INFO);
  70.  
  71.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  72.  family["english"] = "Red Hat Local Security Checks";
  73.  script_family(english:family["english"]);
  74.  
  75.  script_dependencies("ssh_get_info.nasl");
  76.  
  77.  script_require_keys("Host/RedHat/rpm-list");
  78.  exit(0);
  79. }
  80.  
  81. include("rpm.inc");
  82. if ( rpm_check( reference:"mysql-3.23.58-1.72.1", release:"RHEL2.1") )
  83. {
  84.  security_hole(0);
  85.  exit(0);
  86. }
  87. if ( rpm_check( reference:"mysql-devel-3.23.58-1.72.1", release:"RHEL2.1") )
  88. {
  89.  security_hole(0);
  90.  exit(0);
  91. }
  92. if ( rpm_check( reference:"mysql-server-3.23.58-1.72.1", release:"RHEL2.1") )
  93. {
  94.  security_hole(0);
  95.  exit(0);
  96. }
  97.  
  98. if ( rpm_exists(rpm:"mysql-", release:"RHEL2.1") )
  99. {
  100.  set_kb_item(name:"CAN-2004-0381", value:TRUE);
  101.  set_kb_item(name:"CAN-2004-0388", value:TRUE);
  102.  set_kb_item(name:"CAN-2004-0457", value:TRUE);
  103.  set_kb_item(name:"CAN-2004-0835", value:TRUE);
  104.  set_kb_item(name:"CAN-2004-0836", value:TRUE);
  105.  set_kb_item(name:"CAN-2004-0837", value:TRUE);
  106.  set_kb_item(name:"CAN-2004-0957", value:TRUE);
  107. }
  108.  
  109. set_kb_item(name:"RHSA-2004-597", value:TRUE);
  110.